summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/acc/async_context.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/acc/async_context.cpp')
-rw-r--r--src/core/hle/service/acc/async_context.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/acc/async_context.cpp b/src/core/hle/service/acc/async_context.cpp
index c85b2e43a..713689d8f 100644
--- a/src/core/hle/service/acc/async_context.cpp
+++ b/src/core/hle/service/acc/async_context.cpp
@@ -64,7 +64,7 @@ void IAsyncContext::GetResult(Kernel::HLERequestContext& ctx) {
void IAsyncContext::MarkComplete() {
is_complete.store(true);
- completion_event->GetWritableEvent().Signal();
+ completion_event->Signal();
}
} // namespace Service::Account